@import url(header.css);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.staff-picture {
    display: table;
    position: relative;
    width: 100%;
    height: 400px;
    background: url('https://cdn.pixabay.com/photo/2017/08/07/18/28/businessman-2606509_960_720.jpg') center center;
    background-size: cover;
    opacity: 1;
    border-radius: 0px;
    color: white;
    text-transform: uppercase;
    margin: 0;
    overflow: hidden;
    filter: grayscale(45%);
}

.staff-picture h1 {
    font-size: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    text-align: center;
    text-shadow: 2px;
}

.staff-container {
    height: 600px;
}

.team {
    display: flex;
    justify-content: center;
    width: auto;
    text-align: center;
    flex-wrap: wrap;
    padding-top: 150px;
}

.team .team_member {
    background: #fff;
    margin: 5px;
    margin-bottom: 50px;
    width: 300px;
    padding: 20px;
    line-height: 20px;
    color: #fff;
    background-color: #457354;
    position: relative;
}

.team .team_member h3 {
    color: #fff;
    font-size: 26px;
    margin-top: 50px;
}

.team .team_member p.role {
    color: #ccc;
    margin: 12px 0;
    font-size: 12px;
    text-transform: uppercase;
}

.team .team_member .team_img {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
}

.team .team_member .team_img img {
    width: 100px;
    height: 100px;
    padding: 5px;
}